home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacTech 1 to 12
/
MacTech-vol-1-12.toast
/
Source
/
Dave Mark
/
Learn C on the Mac
/
Projects
/
drawDots
/
drawDots.c
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-02-27
|
115 b
|
12 lines
|
[
TEXT/THIN
]
DrawDots( int numDots )
{
int i;
for ( i = 0; i < numDots; i++ )
printf( "." );
}
main()
{
DrawDots( 30 );
}